home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / automake-1.6 / am / header-vars.am < prev    next >
Encoding:
Text File  |  2005-10-16  |  3.0 KB  |  97 lines

  1. ## automake - create Makefile.in from Makefile.am
  2. ## Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000
  3. ## Free Software Foundation, Inc.
  4.  
  5. ## This program is free software; you can redistribute it and/or modify
  6. ## it under the terms of the GNU General Public License as published by
  7. ## the Free Software Foundation; either version 2, or (at your option)
  8. ## any later version.
  9.  
  10. ## This program is distributed in the hope that it will be useful,
  11. ## but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. ## GNU General Public License for more details.
  14.  
  15. ## You should have received a copy of the GNU General Public License
  16. ## along with this program; if not, write to the Free Software
  17. ## Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  18. ## 02111-1307, USA.
  19. SHELL = @SHELL@
  20.  
  21. srcdir = @srcdir@
  22. top_srcdir = @top_srcdir@
  23. VPATH = @srcdir@
  24. prefix = @prefix@
  25. exec_prefix = @exec_prefix@
  26.  
  27. bindir = @bindir@
  28. sbindir = @sbindir@
  29. libexecdir = @libexecdir@
  30. datadir = @datadir@
  31. sysconfdir = @sysconfdir@
  32. sharedstatedir = @sharedstatedir@
  33. localstatedir = @localstatedir@
  34. libdir = @libdir@
  35. infodir = @infodir@
  36. mandir = @mandir@
  37. includedir = @includedir@
  38. oldincludedir = /usr/include
  39.  
  40. @SET_MAKE@
  41.  
  42. ## We used to define this.  However, we don't because vendor makes
  43. ## (e.g., Solaris, Irix) won't correctly propagate variables that are
  44. ## defined in Makefile.  This particular variable can't be correctly
  45. ## defined by configure (at least, not the current configure), so we
  46. ## simply avoid defining it to allow the user to use this feature with
  47. ## a vendor make.
  48. ## DESTDIR =
  49.  
  50. ## Some derived variables that have been found to be useful.
  51. pkgdatadir = $(datadir)/@PACKAGE@
  52. pkglibdir = $(libdir)/@PACKAGE@
  53. pkgincludedir = $(includedir)/@PACKAGE@
  54.  
  55. ## Location of top build directory relative to this one.
  56. top_builddir = %TOPDIR%
  57.  
  58. ACLOCAL = @ACLOCAL@
  59. AUTOCONF = @AUTOCONF@
  60. AUTOMAKE = @AUTOMAKE@
  61. AUTOHEADER = @AUTOHEADER@
  62.  
  63. am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
  64. INSTALL = @INSTALL@
  65. INSTALL_PROGRAM = @INSTALL_PROGRAM@
  66. INSTALL_DATA = @INSTALL_DATA@
  67. install_sh_DATA = $(install_sh) -c -m 644
  68. install_sh_PROGRAM = $(install_sh) -c
  69. install_sh_SCRIPT = $(install_sh) -c
  70. INSTALL_SCRIPT = @INSTALL_SCRIPT@
  71. INSTALL_HEADER = $(INSTALL_DATA)
  72. transform = @program_transform_name@
  73.  
  74. ## These are defined because otherwise make on NetBSD V1.1 will print
  75. ## (eg): $(NORMAL_INSTALL) expands to empty string.
  76. NORMAL_INSTALL = :
  77. PRE_INSTALL = :
  78. POST_INSTALL = :
  79. NORMAL_UNINSTALL = :
  80. PRE_UNINSTALL = :
  81. POST_UNINSTALL = :
  82.  
  83. ## FIXME: Why the heck are _triplet variables not defined from the
  84. ## _triplet values?
  85. ## FIXME: this should probably use generic %configure_vars method.
  86. ## Let's wait until we rely upon traces.
  87. ?BUILD?build_alias = @build_alias@
  88. ?BUILD?build_triplet = @build@
  89. ?HOST?host_alias = @host_alias@
  90. ?HOST?host_triplet = @host@
  91. ?TARGET?target_alias = @target_alias@
  92. ?TARGET?target_triplet = @target@
  93.  
  94. EXEEXT = @EXEEXT@
  95. OBJEXT = @OBJEXT@
  96. PATH_SEPARATOR = @PATH_SEPARATOR@
  97.